home *** CD-ROM | disk | FTP | other *** search
/ Champak 145 / (Vol 145) Dec 21 2011.iso / Games / Debora.swf / scripts / frame_113 / DoAction.as
Encoding:
Text File  |  2011-12-21  |  556 b   |  36 lines

  1. stop();
  2. girl(-200,-5,160);
  3. for(var i in _root.model_mc)
  4. {
  5.    if(typeof _root.model_mc[i] == "movieclip")
  6.    {
  7.       model_mc[i].enabled = false;
  8.    }
  9. }
  10. reset_btn.onRelease = function()
  11. {
  12.    _root.clear_ini();
  13.    gotoAndStop(111);
  14. };
  15. print_btn.onRelease = function()
  16. {
  17.    _root.SetPrintJob();
  18. };
  19. bg_btn.onRelease = function()
  20. {
  21.    _root.bg_mc.play();
  22. };
  23. sd_btn.onRelease = function()
  24. {
  25.    if(sd_no == true)
  26.    {
  27.       end_btn_sound_fun();
  28.       sd_no = false;
  29.    }
  30.    else
  31.    {
  32.       sound3();
  33.       sd_no = true;
  34.    }
  35. };
  36.